exquisiteoath
Nov 21, 2008 14:30
As much as I hate writing code in an environment that was (quite literally) obsoleted 10 years ago, I do enjoy that I can do the following:
String.prototype.write = function() {
Response.write(this);
return this;
}
And from now on, all I need to is write "FOO".write() and get data from my server to my browser... or even [].join(" ").write();
javascript,
web devolopment.